@charset "UTF-8";

@media screen and (max-width: 500px) {



  @font-face {
    font-family: "Zen Old Mincho";
    src: url("../fonts/ZenOldMincho-Bold.ttf") format("truetype");
  }

  @font-face {
    font-family: "MeshedDisplay-Black";
    src: url("../fonts/MeshedDisplay-Black.otf") format("truetype");
  }

  /* @font-face { */
  /* font-family: "Zen Old Mincho"; */
  /* src: url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap"); */
  /* font-display: block; */
  /* } */

  body {
    background-color: #fff;
    width: 100%;
    padding-top: 60px;
    font-feature-settings: "palt"off, "liga"off;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    unicode-bidi: isolate;
  }

  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #B61D22;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.5s ease-out;
    /* 背景のフェードアウトを 1.5秒 に */
  }

  .loading-text {
    font-size: 60px;
    font-family: "MeshedDisplay-Black";
    color: #fff;
    transition: transform 2s ease-in-out, opacity 2.5s ease-out;
  }

  .loading-per {
    font-size: 24px;
    padding-top: 40px;
    font-family: "MeshedDisplay-Black";
    color: #B61D22;
  }

  .loading.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease-out;
  }

  .loading-text,
  .loading-per {
    transition: opacity 1.5s ease-out;
  }

  /* SPECIALZ を上に移動するアニメーション */
  .loading-text.move-up {
    animation: moveUp 1.5s ease-in-out forwards;
  }

  /* SPECIALZ の縮小 & フェードアウト */
  .loading-text.fade-out-small {
    animation: fadeOutSmall 2.5s ease-out forwards;
  }

  @keyframes moveUp {
    0% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    100% {
      transform: translateY(-42.5vh) scale(0.34);
      opacity: 1;
      /* ここでは透明にしない */
    }
  }

  @keyframes fadeOutSmall {
    0% {
      transform: translateY(-35vh) scale(1);
      opacity: 1;
    }

    100% {
      transform: translateY(-35vh) scale(1);
      opacity: 0;
    }
  }

  /*共通*/
  /* ヘッダー↓ */
  .header-white {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fff;
    height: 60px;
    padding: 0 2.5%;
    margin: 0 auto;
    z-index: 1000;
  }

  .header-red {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #B61D22;
    height: 60px;
    padding: 0 2.5%;
    margin: 0 auto;
    z-index: 1000;
  }

  /* header-is-white */
  .specialz-content {
    display: flex;
    width: 80px;
    height: 20px;
  }

  .specialz-content a {
    color: #B61D22;
    font-size: 24px;
    font-family: "MeshedDisplay-Black";
  }

  /* header-is-red */
  .sp-specialz-content {
    display: flex;
    width: 80px;
    height: 20px;
  }

  .sp-specialz-content a {
    color: #fff;
    font-size: 24px;
    font-family: "MeshedDisplay-Black";
  }

  .sp-only {
    width: 100px;
  }

  .pc-only {
    display: none;

  }

  .pc-only img {
    display: none;
  }

  /* トップページのみ */
  .index-specialz {
    text-align: center;
    padding-right: 24px;
    font-size: 24px;
    font-family: "MeshedDisplay-Black";
    color: #B61D22;
  }

  /* ヘッダーが白の場合 */
  .button {
    width: 38px;
    height: 38px;
    cursor: pointer;
    z-index: 1100;
    position: fixed;
    top: 14px;
    right: 2.5%;
  }

  /* ３本線 */
  .button span {
    display: block;
    width: 38px;
    height: 2px;
    background-color: #B61D22;
    margin: 6px 0;
    transition: all 0.6s;
  }

  .button.is-active span:nth-of-type(1) {
    top: 8px;
    transform: translateX(12%) rotate(45deg);
    background: #fff;
    position: absolute;
  }

  .button.is-active span:nth-of-type(2) {
    display: none;
  }

  .button.is-active span:nth-of-type(3) {
    top: 8px;
    transform: translateX(12%) rotate(-45deg);
    background: #fff;
    position: absolute;
  }

  /* ヘッダーが赤の場合 */
  .button-white {
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1100;
    position: fixed;
    top: 16px;
    right: 24px;
  }

  /* ３本線 */
  .button-white span {
    display: block;
    width: 38px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.6s;
  }

  .button-white.is-active span:nth-of-type(1) {
    top: 3px;
    transform: translateX(12%) rotate(45deg);
    background: #fff;
    position: absolute;
  }

  .button-white.is-active span:nth-of-type(2) {
    display: none;
  }

  .button-white.is-active span:nth-of-type(3) {
    top: 3px;
    transform: translateX(12%) rotate(-45deg);
    background: #fff;
    position: absolute;
  }

  .button-white span:nth-of-type(1) {
    top: 8px;
  }

  .button-white span:nth-of-type(2) {
    top: 23px;
  }

  .button-white span:nth-of-type(3) {
    top: 39px;
  }

  .inner-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1050;
    height: 80vh;
    width: 100%;
    background: #B61D22;
    transition: all 0.6s;
  }

  .pc-only ul {
    display: none;
  }


  .inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 2.5%;
    margin: 0 auto;
  }

  .inner-header-title a {
    font-size: 24px;
    color: #fff;
    font-family: "MeshedDisplay-Black";
  }

  .main-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 40px;
  }

  .main-logo {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .main-logo img {
    margin: 0 auto;
    width: 160px;
  }

  .main-list {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .menu-list {
    list-style-type: none;
    display: flex;
    margin-top: 40px;
  }

  .menu-list li {
    padding-bottom: 24px;
  }

  .menu-list a {
    color: #fff;
    font-size: 24px;
    font-family: "MeshedDisplay-Black";
  }

  .hb-insta-logo {
    width: 24px;
    height: auto;
  }

  .main-box2 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 130px;
    padding: 0 40px;
  }

  .policy {
    list-style-type: none;
    display: flex;
  }

  .policy li {
    padding-bottom: 18px;
  }

  .policy a {
    color: #fff;
    font-size: 12px;
    font-family: "MeshedDisplay-Black";
  }

  .inner-nav.is-active {
    right: 0;
  }

  /* ここまでヘッダー */

  /* ここからメイン */
  /* 通常タイトル */
  .title {
    margin-top: 90px;
    text-align: center;
    font-size: 40px;
    font-family: "MeshedDisplay-Black";
    color: #B61D22;
  }

  .title-red {
    margin-top: 104px;
    text-align: center;
    font-size: 40px;
    font-family: "MeshedDisplay-Black";
    color: #fff;
  }

  /* index */
  .event-block {
    width: 95%;
    height: 2043px;
    background-color: #B61D22;
    margin: 40px auto;
  }

  .event-title {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-top: 60px;
    font-size: 20px;
    font-family: "MeshedDisplay-Black";
    color: #fff;
  }

  .event-box {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding-top: 80px;
    flex-direction: column;
    gap: 32px;
  }

  .event-group1 {
    display: flex;
    max-width: 800px;
    height: 600px;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    width: 90%
  }

  .event-photo1 {
    width: 100%;
    max-width: 404px;
    margin: 0 auto;
    object-fit: cover;
  }

  .event-photo1 img {
    width: 100%;
  }

  .e-contents1 {
    max-width: 404px;
    height: 312px;
    background-color: #fff;
    margin: 0 auto;
    padding: 16px 24px;
  }

  .e-contents1 h3 {
    text-align: left;
    font-size: 14px;
    color: black;
    margin-bottom: 24px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .e-contents1 p {
    text-align: left;
    font-size: 12px;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
  }


  .event-group2 {
    display: flex;
    max-width: 800px;
    height: 600px;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    width: 90%
  }

  .event-photo2 {
    width: 100%;
    max-width: 404px;
    margin: 0 auto;
    object-fit: cover;
  }

  .event-photo2 img {
    width: 100%;
  }

  .e-contents2 {
    max-width: 404px;
    height: 312px;
    background-color: #fff;
    margin: 0 auto;
    padding: 16px 24px;
  }

  .e-contents2 h3 {
    text-align: left;
    font-size: 14px;
    color: black;
    margin-bottom: 24px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .e-contents2 p {
    text-align: left;
    font-size: 12px;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
  }

  .event-group3 {
    display: flex;
    max-width: 800px;
    height: 600px;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    width: 90%
  }

  .event-photo3 {
    width: 100%;
    max-width: 404px;
    margin: 0 auto;
    object-fit: cover;
  }

  .event-photo3 img {
    width: 100%;
  }

  .e-contents3 {
    max-width: 404px;
    height: 312px;
    background-color: #fff;
    margin: 0 auto;
    padding: 16px 24px;
  }

  .e-contents3 h3 {
    text-align: left;
    font-size: 14px;
    color: black;
    margin-bottom: 24px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .e-contents3 p {
    text-align: left;
    font-size: 12px;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
  }

  /* ここまでindex */

  /* What We Do */

  .zen-old-mincho-regular {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .ttw-info {
    width: 80%;
    padding-bottom: 80px;
    margin: 64px auto;
  }

  .ttw-info h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
    font-family: "MeshedDisplay-Black";
  }

  .ttw-info h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .ttw-info p {
    font-size: 16px;
    color: black;
    line-height: normal;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .ttw-photo {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
  }

  .photo2 {
    width: 100%;
    object-fit: cover;
  }

  .msm-info {
    width: 80%;
    padding-bottom: 80px;
    margin: 64px auto;
  }

  .msm-info h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
    font-family: "MeshedDisplay-Black";
  }

  .msm-info h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .msm-info p {
    font-size: 16px;
    color: black;
    line-height: normal;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .msm-photo {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
  }

  .photo3 {
    width: 100%;
    object-fit: cover;
  }

  /* ここまでWhat We Do */

  /* About Us */
  /* specialzロゴ大 */
  .large-logo-box {
    width: 100%;
    max-width: 305px;
    margin: 64px auto;
  }

  .large-logo {
    width: 100%;
    object-fit: cover;
  }

  .tachiage-info {
    width: 80%;
    padding-bottom: 80px;
    margin: 0 auto;
  }

  .tachiage-info h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 60px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .tachiage-info p {
    text-align: left;
    font-size: 16px;
    line-height: normal;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .wwd-photo1 {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
  }

  .photo1 {
    width: 100%;
    object-fit: cover;
  }

  .mean-of-logo {
    text-align: center;
    margin: 0 auto;
    font-size: 24px;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .logo-info {
    width: 100%;
    text-align: center;
    padding-top: 60px;
    margin: 0 auto;
  }

  .logo-image {
    min-width: 70px;
    max-width: 200px;
    object-fit: cover;
  }

  .logo-contents {
    width: 80%;
    max-width: 344px;
    text-align: left;
    padding-top: 40px;
    margin: 0 auto;
  }

  .logo-contents p {
    margin: 0 auto;
    text-align: left;
    line-height: normal;
    font-size: 16px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .specialz-info {
    width: 80%;
    margin: 80px auto;
  }

  .specialz-info h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 60px;
    font-family: "MeshedDisplay-Black";
  }

  .specialz-info p {
    margin-bottom: 80px;
    font-size: 16px;
    text-align: left;
    line-height: normal;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .it-takes-info {
    width: 80%;
    max-width: 344px;
    padding: 0 24px;
    margin: 80px auto;
  }

  .it-takes-info h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 60px;
    line-height: normal;
    font-family: "MeshedDisplay-Black";
  }

  .it-takes-info p {
    margin-bottom: 80px;
    font-size: 16px;
    text-align: left;
    line-height: normal;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  /*あゆみくんの写真の箱*/
  .ayumi-profile {
    margin: 80px 0;
    width: 100%;
    text-align: center;
  }

  /*写真の大きさの指定*/
  .ayumi-profile img {
    width: 60%;
    min-width: 200px;
    object-fit: cover;
    /*アスペクト比変えない*/
  }

  /*テキストの最大幅*/
  .ayumi-info {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
  }

  /*あゆみくんタイトル*/
  .ayumi-info h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 24px;
    font-family: "MeshedDisplay-Black";
  }

  /*あゆみくん紹介文*/
  .ayumi-info h3 {
    font-size: 16px;
    margin-bottom: 34px;
    line-height: normal;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .ayumi-info p {
    max-width: 350px;
    margin: 0 auto;
    font-size: 16px;
    line-height: normal;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  /*ルナさんの写真の箱
.Luna-profile {
  margin:212px auto 0;
  margin-bottom: 240px ;
  width: 80%;
  max-width: 1200px;
}
.Luna-profile {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-left: 152px;
}

.Luna-profile img {
  width: 576px;
  height: 544px;
  object-fit: cover;
}

.Luna-info {
  max-width: 464px;
}

.Luna-info h2 {
  font-size: 36px;
  margin-bottom: 46px;
  font-family: "meshed-display-black";
}

.Luna-info h3 {
  font-size: 16px;
  margin-bottom: 42px;
  line-height: normal;
  color: black;
  font-family: "ZenOldMincho-Black";
}

.Luna-info p {
  font-size: 16px;
  line-height: normal;
  color: black;
  font-family: "ZenOldMincho-Black";
}*/

  /* サイトポリシー */
  .page-policy {
    background-color: #B61D22;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .header-policy {
    height: 50px;
    background-color: #B61D22;
    display: flex;
  }

  .site-sp-only a {
    font-size: 24px;
    font-family: "MeshedDisplay-Black";
    color: #fff;
  }

  .page-hamburger {
    background-color: #B61D22;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .site-block {
    max-width: 500px;
    width: 80%;
    height: auto;
    background-color: #fff;
    margin: 64px auto;
    padding: 32px 24px;
  }

  .site-content h2 {
    text-align: center;
    font-size: 20px;
    color: black;
    margin-bottom: 32px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .site-content p {
    margin-bottom: 64px;
    text-align: left;
    font-size: 14px;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
  }

  /* ここまでサイトポリシー */

  /* privacy-policy */
  .privacy-sp-only {
    width: 100%;
  }

  .privacy-sp-only a {
    font-size: 24px;
    font-family: "MeshedDisplay-Black";
    color: #fff;
  }

  .privacy1 h2 {
    text-align: center;
    font-size: 20px;
    color: black;
    margin-bottom: 32px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
  }

  .privacy1 p {
    margin-bottom: 64px;
    text-align: left;
    font-size: 14px;
    color: black;
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
  }

  /* ここまでprivacy-policy */

  footer {
    width: 100%;
    height: 530px;
    background-color: #B61D22;
  }

  .logo-box {
    width: 100%;
    height: 60px;
  }

  .footer-logo {
    display: flex;
    width: 46px;
    padding-top: 38px;
    margin: 0 auto;
  }

  .menu {
    position: relative;
    margin-left: 24px;
  }

  .teamB {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  .footer-content1 {
    list-style-type: none;
    display: flex;
    margin-top: 30px;
    margin-left: 24px;
    width: 230px;
    height: 212px;
  }

  .footer-content1 li {
    padding-bottom: 30px;
  }

  .footer-content1 a {
    color: #fff;
    font-size: 16px;
    font-family: "MeshedDisplay-Black";
  }

  .footer-content2 {
    list-style-type: none;
    margin-top: 30px;
    margin-left: 24px;
    width: 230px;
    height: 100px;
  }

  .footer-content2 li {
    padding-bottom: 26px;
  }

  .insta-logo {
    width: 24px;
    height: auto;
  }

  .footer-content2 a {
    color: #fff;
    font-size: 16px;
    font-family: "MeshedDisplay-Black";
  }

  .footer-content3 {
    list-style-type: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .footer-content3 ul {
    display: flex;
    text-align: center;
  }

  .footer-content3 li {
    width: 100px;
  }

  .footer-content3 a {
    color: #fff;
    font-size: 12px;
    font-family: "MeshedDisplay-Black";
  }

  .copyright {
    display: flex;
    margin: 0 auto;
  }

  .copycontent {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
  }

  .copyright p {
    color: #fff;
    font-size: 8px;
  }

}